111e077535ecbaca8997bd000277fc439d05cf44,core/languageDesign/editor/source/jetbrains/mps/nodeEditor/IntelligentInputUtil.java,IntelligentInputUtil,processRTHintCell,#EditorCell_STHint#EditorContext#String#,43

Before Change


      nextCell = nextCell.getNextLeaf();      
    }

    if (canCompleteSmallPatternImmediately(substituteInfo, pattern, "")) {
      substituteInfo.getMatchingActions(pattern, true).get(0).substitute(editorContext, pattern);
    } else if (pattern.length() > 0 && canCompleteSmallPatternImmediately(substituteInfo, smallPattern, tail)) {
      List<INodeSubstituteAction> matchingActions = substituteInfo.getMatchingActions(smallPattern, true);

After Change


      nextCell = nextCell.getNextLeaf();      
    }

    if (canCompleteSmallPatternImmediately(substituteInfo, pattern, "") ||
      canCompleteSmallPatternImmediately(substituteInfo, trimLeft(pattern), "")) {

      if (!canCompleteSmallPatternImmediately(substituteInfo, pattern, "")) {